home *** CD-ROM | disk | FTP | other *** search
/ CD Charme 1 / CD Charme 01.iso / mac / hybride / GLOWING / HOLO / CHOOSE.DIR / 00021_Script_21 < prev    next >
Text File  |  1994-12-08  |  641b  |  22 lines

  1. on exitFrame
  2.   -- choose one of 2 random HELLO QT Greetings 
  3.   set the puppet of sprite 20 to TRUE
  4.   set the visible of sprite 20 to TRUE
  5.   
  6.   set x = random (2)  
  7.   if x = 1 then
  8.     set the castNum of sprite 20 to the number of cast "HELLOSTD.MOV"
  9.     set curMovie = "HELLOSTD.MOV"
  10.   else    
  11.     set the castNum of sprite 20 to the number of cast "HELLOGL.MOV"
  12.     set curMovie = "HELLOGL.MOV"
  13.   end if 
  14.   
  15.   spriteBox 20, 160, 130, 480, 370
  16.   LoadMovie curMovie
  17.   set the directToStage of cast curMovie to TRUE  
  18.   set the sound of cast curMovie to TRUE
  19.   getQTLen 20 
  20.   puppetTransition 27, 0, 4
  21.   --updateStage
  22. end